home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Gallery / Source / InformationWindow.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-15  |  934 b   |  41 lines

  1. #ifndef INFORMATIONWINDOW_HPP
  2. #define INFORMATIONWINDOW_HPP
  3.  
  4. // $VER: InformationWindow.hpp 39.1 (22.06.97)
  5. //
  6. //
  7. // (C) Copyright 1996,97 Markus Hillenbrand
  8. //     All Rights Reserved, No Warranty
  9.  
  10. #include "GUICINCLUDE:GUIC_Window.hpp"
  11.  
  12. class GUIC_ScreenC;
  13. class GUIC_ApplicationC;
  14. class GUIC_GGFXPictureC;
  15. class GUIC_ButtonC;
  16. class GUIC_TextC;
  17. class GUIC_EventC;
  18. class GUIC_FrameC;
  19.  
  20. class InformationWindowC    : public GUIC_WindowC
  21.     {
  22.     public:
  23.         InformationWindowC                 (GUIC_ApplicationC &app, GUIC_ScreenC &screen);
  24.         ~InformationWindowC             (VOID);
  25.         STRPTR    getClass                    (VOID);
  26.         BOOL        action                        (GUIC_EventC &event);
  27.         VOID         setPictures                (STRPTR fileName1, STRPTR fileName2);
  28.         LONG        getResult                (VOID);
  29.     protected:
  30.         VOID        cleanUp                     (VOID);
  31.     private:
  32.         GUIC_ApplicationC        *app;
  33.         GUIC_ScreenC                *screen;
  34.         GUIC_FrameC                *frame1, *frame2;
  35.         GUIC_GGFXPictureC    *pic1, *pic2;
  36.         GUIC_TextC                    *text1, *text2;
  37.     };
  38.  
  39. #endif
  40.  
  41.